1.Question 1
In Object Oriented programming, what is another name for the "attributes" of an object?

ANS:    fields


2.Question 2
At the moment of creation of a new object, PHP looks at the _________ definition to define the structure and capabilities of the newly created object

ANS:	class


3.Question 3
Which of the following is not a good synonym for 'class' in PHP?

ANS:	direction


4.Question 4
What does the following code accomplish:
$now = new DateTime();

ANS:	Using the DateTime template make a new object and assign it to $now


5.Question 5
What is the syntax to look up the fullname attribute in an object stored in the variable $colleen

ANS:	$colleen->fullname


6.Question 6
Which of these statements is used to indicate that class A will inherit all the features of class B.

ANS:	class A extends B


7.Question 7
Which of the class member visibility settings indicates that a member variable can be accessed within a class and all sub-classes but not outside of the class.

ANS:	protected


8.Question 8
What does the "::" operator do in PHP?

ANS:	Allows us to access constants and static items from a class

